Chart for WPF/Silverlight
データ系列の各横棒/縦棒の色を指定する
グラフ種別 > 横棒グラフと縦棒グラフ > データ系列の各横棒/縦棒の色を指定する

次のコードを使用して、データ系列の DataSeries.PlotElementLoaded イベントで各横棒/縦棒の色を指定できます。

XAML
コードのコピー
var palette = new Brush[] { Brushes.Red, Brushes.Plum, Brushes.Purple };
     dataSeries.PlotElementLoaded += (s, e) =>
        {
          PlotElement pe = (PlotElement)s;
          if (pe.DataPoint.PointIndex >= 0)
            pe.Fill = palette[pe.DataPoint.PointIndex % palette.Length];
        };
関連トピック